From: Ansuel Smith Date: Sun, 25 Oct 2020 13:40:49 +0000 (+0100) Subject: luci-app-sqm: fix missing interface in selection X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=5a6037a258558d7c61422ee966f25a950f99c56e;p=project%2Fluci.git luci-app-sqm: fix missing interface in selection Show device instead of interface in interface selection. Fixes: #4539 Signed-off-by: Ansuel Smith --- diff --git a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js index c60e00b401..a9d99d5f6c 100644 --- a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js +++ b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js @@ -68,7 +68,7 @@ return view.extend({ return uci.set("sqm", section, "enabled", value); }, this); - o = s.taboption("tab_basic", widgets.NetworkSelect, "interface", _("Interface name")); + o = s.taboption("tab_basic", widgets.DeviceSelect, "interface", _("Interface name")); o.rmempty = false; o = s.taboption("tab_basic", form.Value, "download", _("Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress shaping:"));